home *** CD-ROM | disk | FTP | other *** search
/ Network Support Library / RoseWare - Network Support Library.iso / apidev / netdmo.exe / MOREINFO.FRM < prev    next >
Text File  |  1993-12-10  |  2KB  |  81 lines

  1. Version 1.00
  2. BEGIN Form Moreinfo
  3.     AutoRedraw   = 0
  4.     BackColor    = QBColor(1)
  5.     BorderStyle  = 1
  6.     Caption      = "More on NetDemo"
  7.     ControlBox   = -1
  8.     Enabled      = -1
  9.     ForeColor    = QBColor(0)
  10.     Height       = Char(20)
  11.     Left         = Char(8)
  12.     MaxButton    = -1
  13.     MinButton    = -1
  14.     MousePointer = 0
  15.     Tag          = ""
  16.     Top          = Char(2)
  17.     Visible      = -1
  18.     Width        = Char(63)
  19.     WindowState  = 0
  20.     BEGIN PictureBox Picture1
  21.         AutoRedraw   = -1
  22.         BackColor    = QBColor(1)
  23.         BorderStyle  = 1
  24.         DragMode     = 0
  25.         Enabled      = -1
  26.         ForeColor    = QBColor(15)
  27.         Height       = Char(14)
  28.         Left         = Char(0)
  29.         MousePointer = 0
  30.         TabIndex     = 0
  31.         TabStop      = -1
  32.         Tag          = ""
  33.         Top          = Char(0)
  34.         Visible      = -1
  35.         Width        = Char(61)
  36.     END
  37.     BEGIN CommandButton OKButon
  38.         BackColor    = QBColor(7)
  39.         Cancel       = 0
  40.         Caption      = " OK "
  41.         Default      = 0
  42.         DragMode     = 0
  43.         Enabled      = -1
  44.         Height       = Char(3)
  45.         Left         = Char(23)
  46.         MousePointer = 0
  47.         TabIndex     = 1
  48.         TabStop      = -1
  49.         Tag          = ""
  50.         Top          = Char(14)
  51.         Visible      = -1
  52.         Width        = Char(15)
  53.     END
  54. END
  55. '$FORM Netdemo
  56.  
  57. SUB Form_Load ()
  58. Picture1.PRINT "This program is part of the NETWORK SYSTEM CALLS FOR BASIC "
  59. Picture1.PRINT "software package. Its primary purpose is to demonstrate "
  60. Picture1.PRINT "how our system level calls are used with Microsoft's Visual "
  61. Picture1.PRINT "Basic for DOS. It also demonstrates a few of the numerous"
  62. Picture1.PRINT "ways our calls can be used to add network 'smarts' to your "
  63. Picture1.PRINT "Basic applications."
  64. Picture1.PRINT ""
  65. Picture1.PRINT "For more information on WEST VALLEY SOFTWARE COMPANY"
  66. Picture1.PRINT "and NETWORK SYSTEM CALLS FOR BASIC, please call us at"
  67. Picture1.PRINT "(408) 336-WVSC or send a message via Compuserve"
  68. Picture1.PRINT "mail at 75600,3463"
  69.  
  70. END SUB
  71.  
  72. SUB Form_Unload (Cancel AS INTEGER)
  73. Netdemo.SHOW
  74. END SUB
  75.  
  76. SUB OKButon_Click ()
  77. UNLOAD moreinfo
  78. Netdemo.SHOW
  79. END SUB
  80.  
  81.